home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gxcolor2.h < prev    next >
C/C++ Source or Header  |  1997-03-14  |  3KB  |  73 lines

  1. /* Copyright (C) 1993, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxcolor2.h */
  20. /* Internal definitions for Level 2 color routines */
  21. /* Requires gsstruct.h, gxfixed.h */
  22. #include "gscolor2.h"
  23. #include "gsrefct.h"
  24. #include "gxbitmap.h"
  25.  
  26. /* Cache for Indexed color with procedure, or Separation color. */
  27. struct gs_indexed_map_s {
  28.     rc_header rc;
  29.     union {
  30.         int (*lookup_index)(P3(const gs_indexed_params *, int, float *));
  31.         int (*tint_transform)(P3(const gs_separation_params *, floatp, float *));
  32.     } proc;
  33.     uint num_values; /* base_space->type->num_components * (hival + 1) */
  34.     float *values;    /* actually [num_values] */
  35. };
  36. extern_st(st_indexed_map);
  37. #define public_st_indexed_map() /* in gscolor2.c */\
  38.   gs_public_st_ptrs1(st_indexed_map, gs_indexed_map, "gs_indexed_map",\
  39.     indexed_map_enum_ptrs, indexed_map_reloc_ptrs, values)
  40.  
  41. /*
  42.  * We define 'tiling space' as the space in which (0,0) is the origin of
  43.  * the key pattern cell and in which coordinate (i,j) is displaced by
  44.  * i * XStep + j * YStep from the origin.  In this space, it is easy to
  45.  * compute a (rectangular) set of tile copies that cover a (rectangular)
  46.  * region to be tiled.  Note that since all we care about is that the
  47.  * stepping matrix (the transformation from tiling space to device space)
  48.  * yield the right set of coordinates for integral X and Y values, we can
  49.  * adjust it to make the tiling computation easier; in particular, we can
  50.  * arrange it so that all 4 transformation factors are non-negative.
  51.  */
  52.  
  53. /* Implementation of Pattern instances. */
  54. struct gs_pattern_instance_s {
  55.     rc_header rc;
  56.     gs_client_pattern template;
  57.     /* Following are created by makepattern */
  58.     gs_state *saved;
  59.     gs_matrix step_matrix;        /* tiling space -> device space */
  60.     gs_rect bbox;            /* bbox of tile in tiling space */
  61.     bool is_simple;            /* true if xstep/ystep = tile size */
  62.     gs_int_point size;        /* in device coordinates */
  63.     gx_bitmap_id id;        /* key for cached bitmap */
  64.                     /* (= id of mask) */
  65. };
  66. /* The following is only public for a type test in the interpreter */
  67. /* (.buildpattern operator). */
  68. extern_st(st_pattern_instance);
  69. #define public_st_pattern_instance() /* in gspcolor.c */\
  70.   gs_public_st_ptrs_add1(st_pattern_instance, gs_pattern_instance,\
  71.     "pattern instance", pattern_instance_enum_ptrs,\
  72.     pattern_instance_reloc_ptrs, st_client_pattern, template, saved)
  73.